home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows News 2005 November
/
WNnov2005.iso
/
Windows
/
Indispensables
/
Movie Collection
/
MovieCollection5403.exe
/
{app}
/
web
/
FreeBrowser
/
film_medias.xsl
next >
Wrap
Extensible Markup Language
|
2005-08-05
|
2KB
|
57 lines
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" media-type="text/html; charset=ISO-8859-1"/>
<xsl:template match="/">
<html>
<body>
<a href="/mc">Nouvelle recherche</a> ::
<a>
<xsl:attribute name="href">../mc?action=film&idx=<xsl:value-of select="//column[@field='idx']/@value"/></xsl:attribute>
Fiche Film
</a>
<h3>
<xsl:value-of select="//column[@field='nom']/@value"/>
<xsl:if test="not(//column[@field='originaltitle']/@value='')">
(<xsl:value-of select="//column[@field='originaltitle']/@value"/>)
</xsl:if>
</h3><br />
<table border="1" cellpadding="4" cellspacing="0">
<tr>
<td valign="top"><b>Fichiers MΘdias</b></td>
</tr>
<xsl:if test="not(count(//extmedia)='0')">
<xsl:for-each select="//extmedia">
<tr><td>
<a>
<xsl:attribute name="href">../mc?action=play_media&idx=<xsl:value-of select="@idx"/></xsl:attribute>
<xsl:value-of select="@filename"/>
</a>
</td></tr>
</xsl:for-each>
</xsl:if>
<xsl:if test="count(//extimg)='0'">
<tr>
<td valign="top">Pas de fichier</td>
</tr>
</xsl:if>
</table>
<div>...</div>
<a href="/mc">Nouvelle recherche</a> ::
<a>
<xsl:attribute name="href">../mc?action=film&idx=<xsl:value-of select="//column[@field='idx']/@value"/></xsl:attribute>
Fiche Film
</a>
</body>
</html>
</xsl:template>
</xsl:stylesheet>